home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / libgsl0ldbl.postinst < prev    next >
Encoding:
Text File  |  2010-03-17  |  474 b   |  30 lines

  1. #!/bin/sh -e
  2. #
  3. # postinst script for the Debian GNU/Linux libgsl0 package
  4. #
  5. # Written and GPL'ed by Dirk Eddelbuettel <edd@debian.org>   
  6.  
  7. # Automatically added by dh_makeshlibs
  8. if [ "$1" = "configure" ]; then
  9.     ldconfig
  10. fi
  11. # End automatically added section
  12.  
  13.  
  14. case "$1" in
  15.  
  16.     configure)     
  17.     ;;
  18.  
  19.     upgrade|abort-upgrade|abort-remove|abort-deconfigure)
  20.     ;;
  21.  
  22.     *)
  23.         echo "postinst called with unknown argument \`$1'" >&2
  24.         ;;
  25.  
  26. esac
  27.  
  28. exit 0                 
  29.  
  30.